WARNING: Version 1.3 of Elasticsearch has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Common options
editCommon options
editThe following options can be applied to all of the REST APIs.
Pretty Results
editWhen appending ?pretty=true
to any request made, the JSON returned
will be pretty formatted (use it for debugging only!). Another option is
to set format=yaml
which will cause the result to be returned in the
(sometimes) more readable yaml format.
Human readable output
editStatistics are returned in a format suitable for humans
(eg "exists_time": "1h"
or "size": "1kb"
) and for computers
(eg "exists_time_in_millis": 3600000`
or "size_in_bytes": 1024
).
The human readable values can be turned off by adding ?human=false
to the query string. This makes sense when the stats results are
being consumed by a monitoring tool, rather than intended for human
consumption. The default for the human
flag is
false
.
[1.00.Beta]
Added in 1.00.Beta. Previously defaulted to true
Flat Settings
editThe flat_settings
flag affects rendering of the lists of settings. When
flat_settings` flag is true
settings are returned in a flat format:
{ "persistent" : { }, "transient" : { "discovery.zen.minimum_master_nodes" : "1" } }
When the flat_settings
flag is false
settings are returned in a more
human readable structured format:
{ "persistent" : { }, "transient" : { "discovery" : { "zen" : { "minimum_master_nodes" : "1" } } } }
By default the flat_settings
is set to false
.
Parameters
editRest parameters (when using HTTP, map to HTTP URL parameters) follow the convention of using underscore casing.
Boolean Values
editAll REST APIs parameters (both request parameters and JSON body) support
providing boolean "false" as the values: false
, 0
, no
and off
.
All other values are considered "true". Note, this is not related to
fields within a document indexed treated as boolean fields.
Number Values
editAll REST APIs support providing numbered parameters as string
on top
of supporting the native JSON number types.
Time units
editWhenever durations need to be specified, eg for a timeout
parameter, the duration
can be specified as a whole number representing time in milliseconds, or as a time value like 2d
for 2 days. The supported units are:
|
Year |
|
Month |
|
Week |
|
Day |
|
Hour |
|
Minute |
|
Second |
Distance Units
editWherever distances need to be specified, such as the distance
parameter in
the Geo Distance Filter) or the precision
parameter in the
Geohash Cell Filter, the default unit if none is specified is
the meter. Distances can be specified in other units, such as "1km"
or
"2mi"
(2 miles).
The full list of units is listed below:
Mile |
|
Yard |
|
Feet |
|
Inch |
|
Kilometer |
|
Meter |
|
Centimeter |
|
Millimeter |
|
Nautical mile |
|
Fuzziness
editSome queries and APIs support parameters to allow inexact fuzzy matching,
using the fuzziness
parameter. The fuzziness
parameter is context
sensitive which means that it depends on the type of the field being queried:
Numeric, date and IPv4 fields
editWhen querying numeric, date and IPv4 fields, fuzziness
is interpreted as a
+/-
margin. It behaves like a Range Query where:
-fuzziness <= field value <= +fuzziness
The fuzziness
parameter should be set to a numeric value, eg 2
or 2.0
. A
date
field interprets a long as milliseconds, but also accepts a string
containing a time value — "1h"
— as explained in Time units. An ip
field accepts a long or another IPv4 address (which will be converted into a
long).
String fields
editWhen querying string
fields, fuzziness
is interpreted as a
Levenshtein Edit Distance — the number of one character changes that need to be made to one string to
make it the same as another string.
The fuzziness
parameter can be specified as:
-
0
,1
,2
- the maximum allowed Levenshtein Edit Distance (or number of edits)
-
AUTO
-
generates an edit distance based on the length of the term. For lengths:
-
0..1
- must match exactly
-
1..4
- one edit allowed
-
>4
- two edits allowed
AUTO
should generally be the preferred value forfuzziness
. -
-
0.0..1.0
-
converted into an edit distance using the formula:
length(term) * (1.0 - fuzziness)
, eg afuzziness
of0.6
with a term of length 10 would result in an edit distance of4
. Note: in all APIs except for the Fuzzy Like This Query, the maximum allowed edit distance is2
.
Result Casing
editAll REST APIs accept the case
parameter. When set to camelCase
, all
field names in the result will be returned in camel casing, otherwise,
underscore casing will be used. Note, this does not apply to the source
document indexed.
JSONP
editAdded in 1.3.0.
JSONP responses are disabled by default since version 1.3.0
When enabled, all REST APIs accept a callback
parameter
resulting in a JSONP result. You can enable
this behavior by adding the following to config.yaml
:
http.jsonp.enable: true
Please note, when enabled, due to the architecture of Elasticsearch, this may pose a security risk. Under some circumstances, an attacker may be able to exfiltrate data in your Elasticsearch server if they’re able to force your browser to make a JSONP request on your behalf (e.g. by including a <script> tag on an untrusted site with a legitimate query against a local Elasticsearch server).
Request body in query string
editFor libraries that don’t accept a request body for non-POST requests,
you can pass the request body as the source
query string parameter
instead.